home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / gcl-1.000 / gcl-1 / gcl-1.0 / c / bcopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-09  |  82 b   |  10 lines

  1. void
  2. bcopy(s1,s2,n)
  3. char *s1,*s2;
  4. int n;
  5. { while (n-- > 0)
  6.     *s2++ = *s1++;
  7. }
  8.  
  9.  
  10.